home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Estrategia / scooby.swf / scripts / DefineButton2_500 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2006-06-13  |  243 b   |  15 lines

  1. on(release){
  2.    var newnum = month + 1;
  3.    if(newnum > 12)
  4.    {
  5.       newnum = 12;
  6.    }
  7.    month = newnum;
  8.    var newstring = month;
  9.    if(month < 10)
  10.    {
  11.       newstring = "0" + newstring;
  12.    }
  13.    month_txt.text = newstring;
  14. }
  15.